home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 9 / FM Towns Free Software Collection 9.iso / t_os / shell / tsbgex / src / win / win.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-16  |  413 b   |  24 lines

  1. #ifndef TRUE
  2. #define TRUE (1)
  3. #endif
  4. #ifndef FALSE
  5. #define FALSE (0)
  6. #endif
  7. #ifndef NULL
  8. #define NULL ((void *)0)
  9. #endif
  10. #define min(x, y)    ((x) <= (y) ? (x) : (y))
  11. #define max(x, y)    ((x) >= (y) ? (x) : (y))
  12.  
  13. typedef unsigned short    u_short;
  14. typedef unsigned int    u_int;
  15. typedef unsigned long    u_long;
  16.  
  17. struct list {
  18.   struct window *next, *prev;
  19. };
  20.  
  21. #include "window.h"
  22.  
  23. #define MAXSIZE    20000
  24.